- Visit fmhy.net/android-iosguide#ios-ipas for more sources.
- Sideloading Guide: https://rentry.co/sideloadingguide
Discover gists
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "root": "/Users/mikebarnett/Workspace/script-commands", | |
| "generated_at": "2025-12-11T19:27:49Z", | |
| "files": [ | |
| {"path": "Fetch File By Path.sh", "ext": ".sh", "lang": "shell", "size_bytes": 548, "modified": "2025-12-11T19:18:28Z", "preview": "#!/usr/bin/env bash\n# Required parameters:\n# @raycast.schemaVersion 1\n# @raycast.title Fetch File By Path\n# @raycast.mode fullOutput\n# @raycast.packageName Workspace\n#\n# Optional parameters:\n# @raycast.icon \ud83d\udcc4\n# @raycast.argument1 { \"type\": \"text\", \"placeholder\": \"Relative path (e.g., extensions/foo/command.js)\" }\n# @raycast.argument2 { \"type\": \"text\", \"placeholder\": \"Root (Enter for default)\", \"optional\": true }\n\nset -euo pipefail\nREL=\"${1:?relative path required}\"\nROOT=\"${2:-/Users/mikebarnett/Workspace/script-commands}\"\ncat \"$ROOT/$REL\"\n"} |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "Smart Receipt Organizer", | |
| "nodes": [ | |
| { | |
| "parameters": { | |
| "updates": [ | |
| "message", | |
| "channel_post" | |
| ], | |
| "additionalFields": {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; This can be added to your init.el file or included as a require. It requires | |
| ;; Pandoc to be installed and available on your $PATH (and for Emacs to be able | |
| ;; to see your path!). This only works on MacOS, although it could be adapted | |
| ;; for Linux with replacements for pbcopy and textutil (if necessary). | |
| ;; get region or beginning of buffer | |
| (defun wm/begin () | |
| (if (region-active-p) | |
| (region-beginning) | |
| (point-min))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| capture_tls_quic.py — Capture TLS ClientHello and QUIC Initial | |
| -t : capture TLS ClientHello (default) | |
| -q : capture QUIC Initial | |
| -a : capture both (TLS + QUIC) | |
| """ | |
| from __future__ import annotations |
If you sometimes find yourself needing to share a file over HTTP, there are not many file-sharing solutions you can use.
This action works by publishing files via GitHub Pages behind an obscure prefix path. It updates the repository README with the URLs, so that you have links to the published files.
You can keep the repository secret, and the files are public but semi-secret, so you can share them without concern that other files will be discovered.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env tsx | |
| /* eslint-disable @typescript-eslint/no-unused-vars */ | |
| /* eslint-disable no-console */ | |
| /* eslint-disable camelcase */ | |
| /** | |
| * Complete Supabase Type Generator - Schema-File First with Index Support | |
| * | |
| * This script: | |
| * 1. Reads SQL schema files from your Supabase directory (default for --local) |
NewerOlder